diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-21 22:09:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-21 22:09:59 +0100 |
| commit | 005cba86fefc395b157d71b4c6233dba320afb05 (patch) | |
| tree | a4876fa46418830cdc5dcdcbfc3f36bc2fde5512 /src/pages/[locale]/index.astro | |
| parent | aaac97183965e6edd4cbab9a9ea3be1fb90bfef2 (diff) | |
| parent | c357a2af03a8abf960941156414b990d50c48b76 (diff) | |
Merge pull request #6 from Sycamost/dev
Dev
Diffstat (limited to 'src/pages/[locale]/index.astro')
| -rw-r--r-- | src/pages/[locale]/index.astro | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pages/[locale]/index.astro b/src/pages/[locale]/index.astro index f031e8e..a230aee 100644 --- a/src/pages/[locale]/index.astro +++ b/src/pages/[locale]/index.astro @@ -23,6 +23,11 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale); <Page title={t(tPage, { key: 'title' })}> <section> + <h2 set:html={t(tPage, { key: 'submit' })} /> + <p set:html={t(tPage, { key: 'submit-para-1' })} /> + <p set:html={t(tPage, { key: 'submit-para-2' })} /> + </section> + <section> <h2 class="grid-span-6" set:html={t(tPage, { key: 'news' })} /> <NewsIndex newsItems={mostRecentNewsItem ? [mostRecentNewsItem] : []} headingLevel="h3" /> { |
